3707333abd1753ff9dd5c252770f1b5ef897755e,src/test/manual/net/spy/memcached/collection/set/SopServerMessageTest.java,SopServerMessageTest,testNotFound,#,44

Before Change


	}

	public void testNotFound() throws Exception {
		CollectionFuture<Set<Object>> future = (CollectionFuture<Set<Object>>) mc
				.asyncSopGet(key, 1, false, false);
		assertNull(future.get(1000, TimeUnit.MILLISECONDS));

		OperationStatus status = future.getOperationStatus();

After Change


	}

	public void testNotFound() throws Exception {
		CollectionFuture<Set<Object>> future = mc.asyncSopGet(key, 1, false, false);
		assertNull(future.get(1000, TimeUnit.MILLISECONDS));

		OperationStatus status = future.getOperationStatus();